home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / ici / ici.cpi / int.h < prev    next >
C/C++ Source or Header  |  1994-10-27  |  223b  |  16 lines

  1. #ifndef    ICI_INT_H
  2. #define    ICI_INT_H
  3.  
  4. #ifndef    ICI_OBJECT_H
  5. #include "object.h"
  6. #endif
  7.  
  8. struct ints
  9. {
  10.     object_t    o_head;
  11.     long    i_value;
  12. };
  13. #define    intof(o)    ((int_t *)(o))
  14. #define    isint(o)    ((o)->o_tcode == TC_INT)
  15. #endif
  16.